/*
CONTACT
*/

.header{
    width: 100%;
    margin-left: 0;
    margin-right: 0%;
    height: 90px;
    line-height: 70px;
    background-color:#333333;
    position: fixed;
    top: 0;
    z-index: 999;
}
.header .header-logo{
    color: white;
    font-family: 'Montserrat', sans-serif;
    float: left;
    margin-left: 30px;
}
.header .header-menu{
    display: flex;
    float: right;
    margin-right: 30px;
}
.header .header-menu a{
    margin-right: 15px;
    color: white;
}
.header .header-menu a:hover{
    color: #3498db;
}
/*
HAMBURGER
*/
.header__navbar-toggle{
    width: 40px;
    height: 60px;    
    align-items: center;
    display: none;
    cursor: pointer;
}
.header__navbar-toggle-icons, .header__navbar-toggle-icons:before, .header__navbar-toggle-icons:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background: #ffffff;
    position: relative;
}
.header__navbar-toggle-icons:before{top: 10px;}
.header__navbar-toggle-icons:after{top: -14px;}

.is-open .header-menu{
    transform: translateY(0%);
}
/*
GALERIE
*/
.galerie{
    padding: 80px;
}
.galerie img{
    width: 230px;
    padding: 5px;
    filter: grayscale(100%);
    transition: 1s;
}
.galerie img:hover{
    filter: grayscale(0);
    transform: scale(1.1);
}
.footer-information{
    text-align: center;
    margin-top: 30px;
}
.footer-information ul{
    padding: 0;
}
.footer-information ul li {
    display: inline-block;
    list-style-type: none;
}
.footer button{
    margin-top: 15px;
    justify-content: center;
}



@media only screen and (max-width: 1280px)
{
    .banner-content{
        display: none;
    }
    .header-menu {
        transition: all 0.3s;
        transform: translateY(-100%);
        display: block;
        flex-direction: column;
        position: absolute;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        background: #333333;
        top: 0; left: 0;
        color: white;
    } 
    .header__navbar-toggle{
        display: flex;
        float: right;
        margin: 30px;
        z-index: 1000;
    }
    .footer .footer-information ul li {
        padding-top: 10px;
        display: inline-block;
        list-style-type: none;
    }
}
